Check boxe チェックボックス UI
"Yes or No?" — One Checkbox vs Two Radio Buttons.
実装
オリジナルの実装、意外と大変
Custom Styling Form Inputs With Modern CSS Features | CSS-Tricks
The "Checkbox Hack" (and things you can do with it) | CSS-Tricks
code:check-box.html
// id とforが対応しており、labelを押すとcheckboxが押されたことになる
<input type="checkbox" name="c1" id="c1">
<label for="c1">Checkbox</label>
or
labelで囲む
focus フォーカス
input:focus+label::before
inputとlabelが同列